home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 1.toast / Sample Code / Games / ISp Sample / Source / AppleEventHandler.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-28  |  1.1 KB  |  55 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        AppleEventHandler.h
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Version:    xxx put version here xxx
  7.  
  8.     Copyright:    © 1999 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     File Ownership:
  11.  
  12.         DRI:                xxx put dri here xxx
  13.  
  14.         Other Contact:        xxx put other contact here xxx
  15.  
  16.         Technology:            xxx put technology here xxx
  17.  
  18.     Writers:
  19.  
  20.         (BWS)    Brent Schorsch
  21.  
  22.     Change History (most recent first):
  23.  
  24.        <SP1>      7/1/99    BWS        first checked in
  25. */
  26.  
  27. #ifndef __APPLEEVENTHANDLER__
  28. #define __APPLEEVENTHANDLER__
  29.  
  30. //•    ————————————————————————————————————————    Includes
  31.  
  32. #ifndef __APPLEEVENTS__
  33. #include <AppleEvents.h>
  34. #endif
  35.  
  36. //•    ————————————————————————————————————————    Public Definitions
  37. //•    ————————————————————————————————————————    Public Types
  38. //•    ————————————————————————————————————————    Public Variables
  39. //•    ————————————————————————————————————————    Public Functions
  40.  
  41. #ifdef __cplusplus
  42. extern "C" {
  43. #endif
  44.  
  45. extern void        AppleEventsInit(void);
  46. extern void        AppleEventsShutDown(void);
  47. extern Boolean    AppleEventsGotRequiredParams(const AppleEvent *inEvent);
  48. extern void        AppleEventsRegisterQuitFlag(Boolean *inFlag);
  49.  
  50. #ifdef __cplusplus
  51. }
  52. #endif
  53.  
  54. #endif
  55.